#include <inttypes.h>#include <avr\pgmspace.h>#include "status.h"#include "lcd.h"#include "RS232.h"#include "init.h"#include "led.h"#include "GSMParser.h"
Go to the source code of this file.
Functions | |
| int | getFixstate () |
| Sets the status of GPS fix (fixstate). | |
| void | setFixstate (char c) |
| void | showFixstate () |
| Returns the value of GPS fix (fixstate). | |
| void | showLatitudeFormatted () |
| Formats GPS Longitude van dddmm.mmmm naar DD°MM.mmm. | |
| void | showLongitudeFormatted () |
| Shows GPS Latitude in DD°MM.mmm format on LCD. | |
| void | setEW_indicator (char c) |
| Gets the East/West inidicator. | |
| void | setNS_indicator (char c) |
| Displays the fix state on LCD. | |
| char | getNS_indicator () |
| Sets the North/South inidicator. | |
| char | getEW_indicator () |
| Gets the North/South inidicator. | |
| char * | getLatitude () |
| Sets the East/West inidicator. | |
| void | setLatitude (char *s) |
| Returns a char pointer the the N degree. | |
| char * | getLongitude () |
| Sets GPS Latitude. | |
| void | setLongitude (char *s) |
| Gets GPS Longitude. | |
| void | FormatLongitude () |
| Sets GPS Longitude. | |
| void | FormatLatitude () |
| Formats GPS Latitude van ddmm.mmmm naar DD°MM.mmm. | |
| char * | getLatitudeFormatted () |
| Shows GPS Longitude in DD°MM.mmm format on LCD. | |
| char * | getLongitudeFormatted () |
| void | ReportPosition () |
| void FormatLatitude | ( | ) |
Formats GPS Latitude van ddmm.mmmm naar DD°MM.mmm.
| none |
Definition at line 114 of file status.c.
Referenced by UpdateStatus().
| void FormatLongitude | ( | ) |
Sets GPS Longitude.
| char | *s (result) |
Definition at line 96 of file status.c.
Referenced by UpdateStatus().
| char getEW_indicator | ( | ) |
| int getFixstate | ( | ) |
Sets the status of GPS fix (fixstate).
| char | c --> this is the result of getfield (5,2); |
Definition at line 10 of file status.c.
Referenced by ReportPosition(), and showFixstate().
| char* getLatitude | ( | ) |
| char* getLatitudeFormatted | ( | ) |
Shows GPS Longitude in DD°MM.mmm format on LCD.
| none |
Definition at line 131 of file status.c.
Referenced by ReportPosition(), and showLatitudeFormatted().
| char* getLongitude | ( | ) |
| char* getLongitudeFormatted | ( | ) |
Definition at line 136 of file status.c.
Referenced by ReportPosition(), and showLongitudeFormatted().
| char getNS_indicator | ( | ) |
| void ReportPosition | ( | ) |
| void setEW_indicator | ( | char | c | ) |
Gets the East/West inidicator.
| none |
Definition at line 55 of file status.c.
Referenced by UpdateStatus().
| void setFixstate | ( | char | c | ) |
| void setLatitude | ( | char * | s | ) |
Returns a char pointer the the N degree.
| none |
Definition at line 80 of file status.c.
Referenced by UpdateStatus().
| void setLongitude | ( | char * | s | ) |
Gets GPS Longitude.
| none |
Definition at line 91 of file status.c.
Referenced by UpdateStatus().
| void setNS_indicator | ( | char | c | ) |
Displays the fix state on LCD.
| none |
Definition at line 60 of file status.c.
Referenced by UpdateStatus().
| void showFixstate | ( | ) |
| void showLatitudeFormatted | ( | ) |
Formats GPS Longitude van dddmm.mmmm naar DD°MM.mmm.
| none |
Definition at line 42 of file status.c.
Referenced by UpdateStatus().
| void showLongitudeFormatted | ( | ) |
Shows GPS Latitude in DD°MM.mmm format on LCD.
| none |
Definition at line 49 of file status.c.
Referenced by UpdateStatus().
1.5.3